home *** CD-ROM | disk | FTP | other *** search
/ C/C++ Users Group Library 1996 July / C-C++ Users Group Library July 1996.iso / vol_300 / 313_01 / ascii.h < prev    next >
Encoding:
C/C++ Source or Header  |  1990-04-21  |  296 b   |  14 lines

  1. /* $Header: /nw2/tony/src/stevie/src/RCS/ascii.h,v 1.2 89/03/11 22:42:03 tony Exp $
  2.  *
  3.  * Definitions of various common control characters
  4.  */
  5.  
  6. #define    NUL    '\0'
  7. #define    BS    '\010'
  8. #define    TAB    '\011'
  9. #define    NL    '\012'
  10. #define    CR    '\015'
  11. #define    ESC    '\033'
  12.  
  13. #define    CTRL(x)    ((x) & 0x1f)
  14.